projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e57b2e4
)
(Fx_create_frame): Clear Vwindow_list.
author
Gerd Moellmann
<gerd@gnu.org>
Tue, 6 Mar 2001 19:33:47 +0000
(19:33 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Tue, 6 Mar 2001 19:33:47 +0000
(19:33 +0000)
src/w32fns.c
patch
|
blob
|
history
src/xfns.c
patch
|
blob
|
history
diff --git
a/src/w32fns.c
b/src/w32fns.c
index 74aaf164becbfb20929ec3a1e83644236588dd6c..f3001649f8187f11c21d0307f32039124c345db9 100644
(file)
--- a/
src/w32fns.c
+++ b/
src/w32fns.c
@@
-5462,6
+5462,11
@@
This function is an internal primitive--use `make-frame' instead.")
;
}
UNGCPRO;
+
+ /* Make sure windows on this frame appear in calls to next-window
+ and similar functions. */
+ Vwindow_list = Qnil;
+
return unbind_to (count, frame);
}
diff --git
a/src/xfns.c
b/src/xfns.c
index 8ed08ee75ffd90a6586159ed7b6fc4fac15b74dc..97c57382f4197db90310330b724a4e34604d8b6e 100644
(file)
--- a/
src/xfns.c
+++ b/
src/xfns.c
@@
-4455,6
+4455,11
@@
This function is an internal primitive--use `make-frame' instead.")
}
UNGCPRO;
+
+ /* Make sure windows on this frame appear in calls to next-window
+ and similar functions. */
+ Vwindow_list = Qnil;
+
return unbind_to (count, frame);
}